home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
398
/
398.xpi
/
chrome
/
forecastfox.jar
/
content
/
profiles
/
profiles.xul
< prev
Wrap
Extensible Markup Language
|
2010-02-04
|
2KB
|
59 lines
<?xml version="1.0"?>
<!--****************************************************************************
Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
***************************************************************************-->
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://forecastfox/content/bindings.css" type="text/css"?>
<?xml-stylesheet href="chrome://forecastfox/skin/forecastfox.css" type="text/css"?>
<!DOCTYPE window SYSTEM "chrome://forecastfox/locale/forecastfox.dtd">
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
id="ff-profiles"
windowtype="forecastfox:profiles"
persist="screenX, screenY"
onload="profilesLoad(); sizeToContent();"
onunload="profilesUnload();"
title="&ff.profiles.title;">
<script type="application/x-javascript" src="chrome://forecastfox/content/utilities/helpers.js"/>
<script type="application/x-javascript" src="chrome://forecastfox/content/profiles/profiles.js"/>
<stringbundleset>
<stringbundle id="ff-bundle-profiles" src="chrome://forecastfox/locale/forecastfox.properties"/>
</stringbundleset>
<keyset id="ff-keys">
<key keycode="VK_ESCAPE" oncommand="window.close();"/>
</keyset>
<ffheader id="ff-profiles-header" title=""/>
<hbox id="ff-profiles-content" class="ff-content">
<grid>
<columns>
<column/>
<column flex="1"/>
</columns>
<rows>
<row align="center" pack="end">
<label value="&ff.profiles.id;" control="ff-text-id"/>
<textbox id="ff-text-id" flex="1" readonly="true"/>
</row>
<row align="center" pack="end">
<label value="&ff.profiles.name;" control="ff-text-name"/>
<textbox id="ff-text-name" size="45" flex="1" onkeypress="if (event.keyCode == event.DOM_VK_RETURN) gProfiles.accept();" />
</row>
</rows>
</grid>
</hbox>
<hbox id="ff-profiles-footer" class="ff-footer" align="center">
<label value="&ff.providedby;"/>
<fflink label="&acw.site;" tooltiptext="&acw.tooltip;" href="&acw.main;" partner="true" from="dialog"/>
<spacer class="ff-btnspacer" flex="1"/>
<button label="&ff.ok;" default="true" class="ff-button" oncommand="gProfiles.accept();"/>
<button label="&ff.cancel;" class="ff-button" oncommand="window.close();"/>
</hbox>
</window>